home *** CD-ROM | disk | FTP | other *** search
/ Zoom 2 / Zoom - Release 2 (1996)(Active Software)[!].iso / texts / dosman121 / man / quit < prev    next >
Text File  |  1995-05-06  |  1KB  |  48 lines

  1.  
  2.  
  3.  
  4.             Quit(V1.3 on C:) (2.x/3.x internal)             
  5.  
  6.  
  7.      NAME
  8.             Quit - Exit from a batch file with the given error 
  9.         code.
  10.  
  11.      SYNOPSIS
  12.             Quit returncode
  13.  
  14.      DESCRIPTION
  15.             Quit forces an exit from the currently executing 
  16.         batch file.  If given a numeric argument, it will return 
  17.         this as it's own exit status.
  18.  
  19.      KEYWORDS
  20.           
  21.           returncode
  22.             This is the return code reported when the script is 
  23.         quited.  If it is above the FAILAT level, you will get 
  24.         the message:
  25.  
  26.             QUIT failed returncode [returncode]
  27.  
  28.             The number specified is substitued for [returncode]. 
  29.         If it is below the FAILAT level, or this level is not 
  30.         specified, then no message is displayed on QUITing the 
  31.         script.
  32.  
  33.      EXAMPLES
  34.  
  35.             To exit a command without an error code:
  36.  
  37.              QUIT
  38.  
  39.  
  40.             To exit a command with an error code 12:
  41.  
  42.              QUIT 12
  43.  
  44.  
  45.  
  46.             *Note that 2.x/3.x contains this command as a 
  47.         builtin.
  48.